home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 2010 April / PCWorld0410.iso / hity wydania / Ubuntu 9.10 PL / karmelkowy-koliberek-desktop-9.10-i386-PL.iso / casper / filesystem.squashfs / usr / bin / esdcompat < prev    next >
Text File  |  2009-10-26  |  3KB  |  107 lines

  1. #!/bin/sh
  2.  
  3. # This file is part of PulseAudio.
  4. #
  5. # PulseAudio is free software; you can redistribute it and/or modify
  6. # it under the terms of the GNU Lesser General Public License as published by
  7. # the Free Software Foundation; either version 2 of the License, or
  8. # (at your option) any later version.
  9. #
  10. # PulseAudio is distributed in the hope that it will be useful, but
  11. # WITHOUT ANY WARRANTY; without even the implied warranty of
  12. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  13. # General Public License for more details.
  14. #
  15. # You should have received a copy of the GNU Lesser General Public License
  16. # along with PulseAudio; if not, write to the Free Software
  17. # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
  18. # USA.
  19.  
  20. VERSION_STRING="pulseaudio esd wrapper 0.9.19"
  21.  
  22. fail() {
  23.     echo "ERROR: $1"
  24.     exit 1
  25. }
  26.  
  27. PULSEAUDIO_SYSTEM_START=0
  28. test -f /etc/default/pulseaudio && . /etc/default/pulseaudio
  29.  
  30. if [ ! $PULSEAUDIO_SYSTEM_START -eq 0 ]; then
  31.     exit 0
  32. fi
  33.  
  34. ARGS=" --log-target=syslog"
  35.  
  36. while [ "$#" -gt "0" ]; do
  37.  
  38.     case "$1" in
  39.         "")
  40.             ;;
  41.  
  42.         -v|--version)
  43.             echo "$VERSION_STRING"
  44.             exit 0
  45.             ;;
  46.  
  47.         -h|--help)
  48.             cat <<EOF
  49. $VERSION_STRING
  50.  
  51. Usage: $0 [options]
  52.  
  53.   -v --version  print version information
  54.   -h --help     show this help
  55.  
  56. Ignored directives:
  57.  
  58.   -tcp          use tcp/ip sockets in addition to unix domain
  59.   -promiscuous  don't require authentication
  60.   -d DEVICE     force esd to use sound device DEVICE
  61.   -b            run server in 8 bit sound mode
  62.   -r RATE       run server at sample rate of RATE
  63.   -as SECS      free audio device after SECS of inactivity
  64.   -unix         use unix domain sockets instead of tcp/ip
  65.   -public       make tcp/ip access public (other than localhost)
  66.   -terminate    terminate esd daemone after last client exits
  67.   -nobeeps      disable startup beeps
  68.   -trust        start esd even if use of /tmp/.esd can be insecure
  69.   -port PORT   listen for connections at PORT (only for tcp/ip)
  70.   -bind ADDRESS binds to ADDRESS (only for tcp/ip)
  71. EOF
  72.             exit 0
  73.             ;;
  74.  
  75.         -spawnpid)
  76.             shift
  77.             ARGS="$ARGS '-Lmodule-esound-compat-spawnpid pid=$1'"
  78.             ;;
  79.  
  80.         -spawnfd)
  81.             shift
  82.             ARGS="$ARGS '-Lmodule-esound-compat-spawnfd fd=$1'"
  83.             ;;
  84.         
  85.         -unix|-b|-public|-terminate|-nobeeps|-trust|-tcp|-promiscuous)  
  86.             # Ignore these commands
  87.             ;; 
  88.  
  89.         -d|-r|-as|-port|-bind)
  90.             # Ignore these commands and their arguments
  91.             shift
  92.  
  93.             ;;
  94.  
  95.         *)
  96.             fail "Unknown command: $1"
  97.             ;;
  98.     esac
  99.  
  100.     shift
  101. done
  102.  
  103. if [ ! -f /var/lib/pulseaudio/pulse_a11y_nostart ] && \
  104.    [ ! -f $HOME/.pulse_a11y_nostart ]; then
  105.        eval "exec '/usr/bin/pulseaudio'$ARGS"
  106. fi
  107.